home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library / Microsoft Programmer's Library (CD-ROM Database)(125-099-008)(Version 1.1a)(CDRM 162100)(1989).iso / SAMPCODE / OS2SDK11 / TK4 / OPENDLG / HELLO / HELLO.RC < prev    next >
Text File  |  1989-02-20  |  858b  |  30 lines

  1. /*
  2.     Resource file for OpenDlg demonstrator
  3.     Created by Microsoft Corporation, 1989
  4. */
  5. #include <os2.h>
  6. #include "hello.h"
  7.  
  8. POINTER ID_RESOURCE    hello.ico
  9.  
  10. MENU ID_RESOURCE {
  11.     SUBMENU    "~File", IDM_FILE {
  12.         MENUITEM "~Open...",    IDM_OPEN,    MIS_TEXT
  13.         MENUITEM "~Save As...", IDM_SAVE,    MIS_TEXT
  14.         MENUITEM SEPARATOR
  15.         MENUITEM "E~xit",    SC_CLOSE,    MIS_SYSCOMMAND
  16.         MENUITEM "A~bout...",    IDM_ABOUT,    MIS_TEXT
  17.     }
  18. }
  19.  
  20. DLGTEMPLATE IDD_ABOUT {
  21.     DIALOG "", 0, 10, 60, 160, 75, WS_SAVEBITS | FS_DLGBORDER {
  22.     CTEXT    "OS/2 Presentation Manager"       -1, 10, 60, 140, 10
  23.     CTEXT    "OpenDlg Demonstrator"           -1, 10, 50, 140, 10
  24.     ICON    ID_RESOURCE                -1,  8, 40,   0,  0
  25.     CTEXT    "Version 1.0"               -1, 10, 30, 140, 10
  26.     CTEXT    "Created by Microsoft Corp., 1989" -1, 10, 20, 140, 10
  27.     DEFPUSHBUTTON "Ok"           DID_OK, 64,  4, 32,  14, WS_GROUP
  28.     }
  29. }
  30.